httpget query parameters c#

110

asp.net get query string parameter -

Uri myUri = new Uri("http://www.example.com?param1=good¶m2=bad");
string param1 = HttpUtility.ParseQueryString(myUri.Query).Get("param1");

Comments

Submit
0 Comments